home *** CD-ROM | disk | FTP | other *** search
- var noHit = true;
- var dix = true;
- var long = 0;
- var spd = 2;
- _parent._parent.enemy_array.push(this._name);
- this.swapDepths(100 + _parent._parent.dep++);
- stop();
- onEnterFrame = function()
- {
- if(_parent._parent.pauses == false)
- {
- if(dix == false)
- {
- this._y -= spd;
- long += spd;
- }
- else
- {
- this._y += spd;
- long += spd;
- }
- if(long >= 70)
- {
- long = 0;
- if(dix == false)
- {
- dix = true;
- }
- else
- {
- dix = false;
- }
- }
- if(this.fk.hitTest(_parent._parent.man.fk) and _parent._parent.yinc > 0)
- {
- _parent._parent.yinc = -10;
- _parent._parent.inAir = true;
- delete this.onEnterFrame;
- this.play();
- }
- }
- };
-